home *** CD-ROM | disk | FTP | other *** search
/ The 50th Anniversary of …National Assembly Library / The 50th Anniversary of the National Assembly Library.iso / main.dxr / 00083.ls < prev    next >
Encoding:
Text File  |  2002-02-18  |  543 b   |  31 lines

  1. on mouseEnter
  2.   cursor([121, 122])
  3.   set the member of sprite 167 to 99
  4. end
  5.  
  6. on mouseDown
  7.   if rollover(167) then
  8.   end if
  9. end
  10.  
  11. on mouseUp
  12.   if rollover(167) then
  13.     cursor(-1)
  14.     go("message")
  15.   end if
  16. end
  17.  
  18. on mouseLeave
  19.   if rollover(164) or rollover(165) or rollover(166) or rollover(168) then
  20.     set the member of sprite 167 to 98
  21.     cursor(-1)
  22.   else
  23.     cursor(-1)
  24.     set the member of sprite 141 to 113
  25.     set the member of sprite 167 to 98
  26.     repeat with tt = 165 to 168
  27.       sprite(tt).visible = 0
  28.     end repeat
  29.   end if
  30. end
  31.